home *** CD-ROM | disk | FTP | other *** search
- unit Demo4;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, DBTables, DB, Grids, DBGrids, StdCtrls, Buttons, ExtCtrls,
- PrnGridR, Printers;
-
- type
- TDemo4Form = class(TForm)
- Panel1: TPanel;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Preview: TBitBtn;
- Exit: TBitBtn;
- Panel2: TPanel;
- Query1: TQuery;
- Query1PartNo: TFloatField;
- Query1VendorNo: TFloatField;
- Query1Description: TStringField;
- Query1OnHand: TFloatField;
- Query1OnOrder: TFloatField;
- Query1Cost: TCurrencyField;
- Query1ListPrice: TCurrencyField;
- DataSource1: TDataSource;
- DBGrid1: TDBGrid;
- PrintGridReport1: TPrintGridReport;
- procedure PreviewClick(Sender: TObject);
- procedure PrintGridReport1PrintFooter(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Demo4Form: TDemo4Form;
-
- implementation
-
- {$R *.DFM}
-
- procedure TDemo4Form.PreviewClick(Sender: TObject);
- begin
- PrintGridReport1.Execute;
-
- end;
-
- procedure TDemo4Form.PrintGridReport1PrintFooter(Sender: TObject);
- begin
- PrintGridReport1.FrameStyleBottom := frDoubleThin;
- PrintGridReport1.FrameStyleTop := frSingleThin;
- end;
-
- end.
-